Skip to content

chore(deps): autoupdate 2026-08-03 - #62

Merged
github-actions[bot] merged 1 commit into
mainfrom
dependencies/auto-2026-08-03
Aug 3, 2026
Merged

chore(deps): autoupdate 2026-08-03#62
github-actions[bot] merged 1 commit into
mainfrom
dependencies/auto-2026-08-03

Conversation

@vzakharchenko

@vzakharchenko vzakharchenko commented Aug 3, 2026

Copy link
Copy Markdown
Member

Automated dependency update produced by .github/workflows/autoupdate.yml via scripts/update-dependencies.sh. Will auto-merge once required checks pass (see .github/workflows/automerge.yml).

Summary by CodeRabbit

  • Chores
    • Updated frontend tooling and platform libraries to newer versions.
    • Includes maintenance updates for improved compatibility and reliability.

@vzakharchenko vzakharchenko added the dependencies_updated Automated dependency updates label Aug 3, 2026
@github-actions
github-actions Bot enabled auto-merge August 3, 2026 02:58
@coderabbitai

coderabbitai Bot commented Aug 3, 2026

Copy link
Copy Markdown

Review Change Stack

📝 Walkthrough

Walkthrough

The frontend dependency manifest updates @forge/bridge from ^6.1.1 to ^6.2.0 and npm-check-updates from ^23.0.0 to ^23.0.1.

Changes

Frontend dependencies

Layer / File(s) Summary
Update frontend dependency ranges
examples/atlassian-connect-forge-spring-boot-sample/frontend/package.json
Updates the @forge/bridge and npm-check-updates dependency ranges.

Estimated code review effort: 1 (Trivial) | ~2 minutes

Possibly related PRs

🚥 Pre-merge checks | ✅ 4 | ❌ 1

❌ Failed checks (1 warning)

Check name Status Explanation Resolution
Description check ⚠️ Warning The description explains the automated update but omits the required summary, change type, modules, breaking change, testing, and checklist sections. Complete the repository template and include the affected example module, dependency changes, breaking-change status, testing details, and checklist confirmations.
✅ Passed checks (4 passed)
Check name Status Explanation
Title check ✅ Passed The title clearly identifies an automated dependency update and includes the update date.
Docstring Coverage ✅ Passed No functions found in the changed files to evaluate docstring coverage. Skipping docstring coverage check.
Linked Issues check ✅ Passed Check skipped because no linked issues were found for this pull request.
Out of Scope Changes check ✅ Passed Check skipped because no linked issues were found for this pull request.
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch dependencies/auto-2026-08-03

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@codacy-production

Copy link
Copy Markdown

Up to standards ✅

🟢 Issues 0 issues

Results:
0 new issues

View in Codacy

NEW Get contextual insights on your PRs based on Codacy's metrics, along with PR and Jira context, without leaving GitHub. Enable AI reviewer
TIP This summary will be updated as you push new changes.

@coderabbitai coderabbitai Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Actionable comments posted: 1

🤖 Prompt for all review comments with AI agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

Inline comments:
In `@examples/atlassian-connect-forge-spring-boot-sample/frontend/package.json`:
- Line 26: Update the frontend package metadata to declare a Node.js baseline
compatible with npm-check-updates@23.0.1, using the engines.node field in
package.json or an equivalent tracked version file. If the project must support
older Node versions, instead pin npm-check-updates to a compatible release and
keep package.json and package-lock.json consistent.
🪄 Autofix (Beta)

Fix all unresolved CodeRabbit comments on this PR:

  • Push a commit to this branch (recommended)
  • Create a new PR with the fixes

ℹ️ Review info
⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro Plus

Run ID: b6c97f9f-85db-4a6c-bd1e-8986a4c96a20

📥 Commits

Reviewing files that changed from the base of the PR and between 0dd11e0 and b6cbc99.

⛔ Files ignored due to path filters (1)
  • examples/atlassian-connect-forge-spring-boot-sample/frontend/package-lock.json is excluded by !**/package-lock.json
📒 Files selected for processing (1)
  • examples/atlassian-connect-forge-spring-boot-sample/frontend/package.json

"@types/react-dom": "19.2.3",
"esbuild": "^0.28.1",
"npm-check-updates": "^23.0.0",
"npm-check-updates": "^23.0.1",

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🩺 Stability & Availability | 🟡 Minor | ⚡ Quick win

🧩 Analysis chain

🏁 Script executed:

#!/bin/bash
set -euo pipefail

fd -H -t f . | rg '(^|/)(package\.json|package-lock\.json|\.nvmrc|\.node-version|\.tool-versions|Dockerfile.*|.*\.(yml|yaml))$' |
while IFS= read -r file; do
  rg -n -C2 'engines|node-version|setup-node|NODE_VERSION|22\.22\.2|24\.15\.0|>=26' "$file" || true
done

Repository: forge-sql-orm/atlassian-runtime-bridge

Length of output: 18077


🏁 Script executed:

#!/bin/bash
set -euo pipefail

echo "Tracked Node version files and frontend package.json engines/scripts:"
for f in .nvmrc .node-version .tool-versions; do
  if [ -f "$f" ]; then
    echo "--- $f"
    cat -n "$f"
  fi
done

echo "--- examples/atlassian-connect-forge-spring-boot-sample/frontend/package.json"
sed -n '1,80p' examples/atlassian-connect-forge-spring-boot-sample/frontend/package.json | cat -n

echo "--- Workflow YAML Node actions/Node versions"
fd -H -t f . | rg '(^|/)\.github/workflows/.*\.(yml|yaml)$' | while IFS= read -r file; do
  echo "--- $file"
  rg -n -C3 'setup-node|node-version|node-version-file|npm-check-updates|npm|node|20|22|24|26' "$file" || true
done

echo "--- Any npm-check-updates commands in workflows/package scripts"
rg -n 'npm-check-updates|ncu' Examples examples .github package.json examples/atlassian-connect-forge-spring-boot-sample/frontend/package.json || true

echo "--- git diff stat/name (if available)"
git diff --stat -- examples/atlassian-connect-forge-spring-boot-sample/frontend/package.json examples/atlassian-connect-forge-spring-boot-sample/frontend/package-lock.json 2>/dev/null || true
git diff -- examples/atlassian-connect-forge-spring-boot-sample/frontend/package.json 2>/dev/null | sed -n '1,120p' || true

Repository: forge-sql-orm/atlassian-runtime-bridge

Length of output: 6266


Raise the frontend Node baseline to match npm-check-updates@23.

examples/atlassian-connect-forge-spring-boot-sample/frontend/package-lock.json requires node: "^22.22.2 || ^24.15.0 || >=26.0.0" for npm-check-updates@23.0.1, but examples/atlassian-connect-forge-spring-boot-sample/frontend/package.json has no engines.node field and no tracked .nvmrc/.node-version. If older Node versions are supported, set the frontend Node baseline accordingly or keep a compatible NCU version.

🤖 Prompt for AI Agents
Verify each finding against current code. Fix only still-valid issues, skip the
rest with a brief reason, keep changes minimal, and validate.

In `@examples/atlassian-connect-forge-spring-boot-sample/frontend/package.json` at
line 26, Update the frontend package metadata to declare a Node.js baseline
compatible with npm-check-updates@23.0.1, using the engines.node field in
package.json or an equivalent tracked version file. If the project must support
older Node versions, instead pin npm-check-updates to a compatible release and
keep package.json and package-lock.json consistent.

@sonarqubecloud

sonarqubecloud Bot commented Aug 3, 2026

Copy link
Copy Markdown

@qltysh

qltysh Bot commented Aug 3, 2026

Copy link
Copy Markdown

Qlty


Coverage Impact

This PR will not change total coverage.

🚦 See full report on Qlty Cloud »

🛟 Help
  • Diff Coverage: Coverage for added or modified lines of code (excludes deleted files). Learn more.

  • Total Coverage: Coverage for the whole repository, calculated as the sum of all File Coverage. Learn more.

  • File Coverage: Covered Lines divided by Covered Lines plus Missed Lines. (Excludes non-executable lines including blank lines and comments.)

    • Indirect Changes: Changes to File Coverage for files that were not modified in this PR. Learn more.

@github-actions
github-actions Bot merged commit 2079714 into main Aug 3, 2026
13 checks passed
@vzakharchenko
vzakharchenko deleted the dependencies/auto-2026-08-03 branch August 3, 2026 09:49
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies_updated Automated dependency updates

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant